home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / domino5_overflows.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  71 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(11338);
  11.  script_bugtraq_id(3041, 7038, 7039);
  12.  script_version ("$Revision: 1.11 $");
  13.  script_cve_id("CAN-2003-0123", "CAN-2001-1311");
  14.  
  15.  name["english"] = "Lotus Domino Vulnerabilities";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote Lotus Domino server, according to its version number,
  20. is vulnerable to various buffer overflows affecting it when
  21. it acts as a client (through webretriever) or in LDAP.
  22.  
  23. An attacker may use these to disable this server or
  24. execute arbitrary commands on the remote host.
  25.     
  26.  
  27. References :
  28.     http://www.rapid7.com/advisories/R7-0011.html
  29.     http://www.rapid7.com/advisories/R7-0012.html
  30.  
  31. Solution : Update to Domino 5.0.12 or 6.0.1
  32. Risk factor : High";    
  33.  
  34.  script_description(english:desc["english"]);
  35.  
  36.  summary["english"] = "Checks for the version of the remote Domino Server";
  37.  
  38.  script_summary(english:summary["english"]);
  39.  
  40.  script_category(ACT_GATHER_INFO);
  41.  
  42.  
  43.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  44.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  45.  family["english"] = "Gain a shell remotely";
  46.  script_family(english:family["english"]);
  47.  script_dependencie("find_service.nes", "http_version.nasl", "webmirror.nasl", "www_fingerprinting_hmap.nasl");
  48.  script_require_ports("Services/www", 80);
  49.  exit(0);
  50. }
  51.  
  52. #
  53. # The script code starts here
  54. #
  55.  
  56. include("http_func.inc");
  57.  
  58.  
  59. port = get_http_port(default:80);
  60.  
  61.  
  62. sig = get_kb_item("www/hmap/" + port + "/description");
  63. if ( sig && "Lotus Domino" >!< sig ) exit(0);
  64.  
  65. banner = get_http_banner(port:port);
  66. if(!banner)exit(0);
  67.  
  68.  
  69. if(egrep(pattern:"^Server: Lotus-Domino/(Release-)?(4\..*|5\.0.?([0-9]|1[0-1])[^0-9])", string:banner))security_hole(port);
  70.